home *** CD-ROM | disk | FTP | other *** search
/ Champak 33 / Volume 33 - JOGO DISK .iso / Games / pin_ball_deluxe.swf / scripts / frame_4 / DoAction.as < prev   
Text File  |  2007-01-15  |  456b  |  22 lines

  1. function seconds_time()
  2. {
  3.    if(_root.numeral < 10)
  4.    {
  5.       _root.numeral += 1;
  6.       _root.countSecond -= 1;
  7.    }
  8.    if(_root.numeral == 10 && _root.countSecond == 0)
  9.    {
  10.       clearInterval(intervalID);
  11.       _root.anca1._x -= 60;
  12.       _root.anca2._x += 60;
  13.       _root.numeral = 0;
  14.    }
  15. }
  16. function barrierRamp(countSecond)
  17. {
  18.    clearInterval(intervalID);
  19.    _root.numeral = 0;
  20.    intervalID = setInterval(seconds_time,1000);
  21. }
  22.